home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UTIL / SCREEN / DIGI / !DigiClock / h / dclock
Text File  |  1992-12-21  |  337b  |  25 lines

  1. #ifndef _dclock_h
  2. #define _dclock_h
  3.  
  4. #include <time.h>
  5.  
  6. typedef struct {
  7.    int sec0;
  8.    int sec1;
  9.    int min0;
  10.    int min1;
  11.    int hour0;
  12.    int hour1;
  13. } dclock_digits;
  14.  
  15. typedef struct {
  16.    dclock_digits old,new,val;
  17.    wimp_w handle;
  18.    struct tm initial_time;
  19.    int et;
  20. } dclock_str;
  21.  
  22. void dclock_create(dclock_str *dclock);
  23.  
  24. #endif
  25.